home *** CD-ROM | disk | FTP | other *** search
/ Amiga Plus 2004 #11 / Amiga Plus CD - 2004 - No. 11.iso / AmiSoft / Util / conv / Acvt.lha / Acvt 1.07 / sources / cdsk_scp.h < prev    next >
C/C++ Source or Header  |  1999-06-10  |  1KB  |  38 lines

  1. //    This program is free software; you can redistribute it and/or modify
  2. //    it under the terms of the GNU General Public License as published by
  3. //    the Free Software Foundation; either version 2 of the License, or
  4. //    any later version.
  5. //
  6. //    This program is distributed in the hope that it will be useful,
  7. //    but WITHOUT ANY WARRANTY; without even the implied warranty of
  8. //    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  9. //    GNU General Public License for more details.
  10. //
  11. //    You should have received a copy of the GNU General Public License
  12. //    along with this program; if not, write to the Free Software
  13. //    Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
  14. //
  15.  
  16. #ifndef __CSCP_H__
  17. #define __CSCP_H__
  18.  
  19. #include "wintypes.h"
  20. #include "cdisk.h"
  21.  
  22. #define CSCP_FORMAT_VIOLATED ( CSCP_BASE + 0 )
  23.  
  24. class CScp : public CDisk
  25. {
  26. public:
  27.                 CScp();
  28.                 ~CScp();
  29.  
  30.                 BOOL Load( char*, BOOL = FALSE, BOOL = FALSE );
  31.                 BOOL Save( char*, BOOL );
  32.  
  33. private:
  34. };
  35.  
  36. #endif
  37.  
  38.